how get data from json in c#

51

how get data from json in c# -

public class JSONResponse
{
    public string status { get; set; }
    public List<Article> articles { get; set; }
}


JSONResponse response = JsonConvert.DeserializeObject<JSONResponse>(myJSON);

Comments

Submit
0 Comments